home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2003 November A / PCWK1103A.iso / ABBYY FineReader 7.0 PRO / data1.cab / gs_epsf.ps < prev    next >
Text File  |  2002-02-23  |  2KB  |  60 lines

  1. %    Copyright (C) 1989, 1996 Aladdin Enterprises.  All rights reserved.
  2. % This software is provided AS-IS with no warranty, either express or
  3. % implied.
  4. % This software is distributed under license and may not be copied,
  5. % modified or distributed except as expressly authorized under the terms
  6. % of the license contained in the file LICENSE in this distribution.
  7. % For more information about licensing, please refer to
  8. % http://www.ghostscript.com/licensing/. For information on
  9. % commercial licensing, go to http://www.artifex.com/licensing/ or
  10. % contact Artifex Software, Inc., 101 Lucas Valley Road #110,
  11. % San Rafael, CA  94903, U.S.A., +1(415)492-9861.
  12.  
  13. % $Id: gs_epsf.ps,v 1.2.6.1 2002/02/22 19:45:55 ray Exp $
  14. % Allow the interpreter to recognize MS-DOS EPSF file headers, and skip to
  15. % the PostScript section of the file.
  16.  
  17. /.runnoepsf /run load def
  18. /.epsfheader <C5D0D3C6> def
  19. /run
  20.  { dup type /filetype ne { (r) file } if
  21.         % Check for MS-DOS EPSF file (see Red Book p. 729).
  22.    true exch 0 1 3
  23.     {        % Stack: true file index
  24.       1 index read dup { pop dup .epsfheader 3 index get eq } if
  25.        { pop pop }    % if matched, don't need the character
  26.        {    % unread characters (wasn't EPSF)
  27.      2 index exch unread     % unread mismatch character
  28.      dup {   % loop unreading backwards in .epsfheader
  29.        1 sub dup .epsfheader exch get 2 index exch unread
  30.      } repeat pop
  31.      exch not exch exit    % change true to false
  32.        }
  33.       ifelse
  34.     }
  35.    for exch    % Stack: file true/false
  36.     {        % This block is executed if the file is MS-DOS EPSF.
  37.         % Build up the little-endian byte offset and length.
  38.       2
  39.     { 1 0 4
  40.        { 2 index read not { pop exit } if % if EOF, let error happen
  41.          2 index mul add exch 256 mul exch
  42.        }
  43.       repeat exch pop exch
  44.     }
  45.       repeat
  46.         % Stack: offset length file
  47.         % Use flushfile to skip quickly to the start of the
  48.         % PostScript section.
  49.       dup 4 -1 roll 12 sub () /SubFileDecode filter flushfile
  50.         % Now interpret the PostScript.
  51.       exch () /SubFileDecode filter cvx .runexec
  52.     }
  53.     { .runnoepsf
  54.     }
  55.    ifelse
  56.  } odef
  57.